feat: Support for fault-tolerant execution#779
Merged
Conversation
sbernauer
reviewed
Aug 5, 2025
4cc640f to
3d113df
Compare
fc684e3 to
85a09cc
Compare
sbernauer
reviewed
Aug 6, 2025
Member
sbernauer
left a comment
There was a problem hiding this comment.
I dropped some comments on the CRD code and YAML.
As an possible alternative I can propose a complex enum style, where we can together think about it, just pasting it here for reference for now
spec:
clusterConfig:
faultTolerantExecution:
query:
retryAttempts: 4 # maps to query-retry-attempts
retryInitialDelay: 10s
retryMaxDelay: 60s
retryDelayScaleFactor: 2.0 # f32
exchangeManager: # Optional
deduplicationBufferSize: 64Mi # Quantity
encryptionEnabled: true
sinkBufferPoolMinSize: 20
sinkBuffersPerPartition: 4
sinkMaxFileSize: 2Gi # Quantity
sourceConcurrentReaders: 8
s3:
baseDirectories:
- s3://trino-exchange-bucket/spooling
connection: # Mandatory
reference: minio-connection
maxErrorRetries: 10
uploadPartSize: 10Mi # Quantity
# OR
task:
retryAttemptsPerTask: 4 # maps to task-retry-attempts-per-task
retryInitialDelay: 10s
retryMaxDelay: 60s
retryDelayScaleFactor: 2.0 # f32
exchangeManager: # Mandatory
# ... same struct as above
docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc
Outdated
Show resolved
Hide resolved
docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc
Outdated
Show resolved
Hide resolved
docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc
Outdated
Show resolved
Hide resolved
docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc
Outdated
Show resolved
Hide resolved
tests/templates/kuttl/fault-tolerant-execution/helm-bitnami-minio-values.yaml
Show resolved
Hide resolved
2567920 to
843b18d
Compare
sbernauer
reviewed
Aug 12, 2025
fd42c2b to
af39e6b
Compare
3 tasks
eaaff12 to
9e587d8
Compare
…adoc Co-authored-by: Sebastian Bernauer <sebastian.bernauer@stackable.de>
539473f to
b9f5ca9
Compare
maltesander
requested changes
Aug 18, 2025
docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc
Outdated
Show resolved
Hide resolved
docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc
Outdated
Show resolved
Hide resolved
docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc
Outdated
Show resolved
Hide resolved
docs/modules/trino/pages/usage-guide/fault-tolerant-execution.adoc
Outdated
Show resolved
Hide resolved
tests/templates/kuttl/fault-tolerant-execution/05-run-tests.yaml
Outdated
Show resolved
Hide resolved
…adoc Co-authored-by: Malte Sander <malte.sander.it@gmail.com>
…adoc Co-authored-by: Malte Sander <malte.sander.it@gmail.com>
…adoc Co-authored-by: Malte Sander <malte.sander.it@gmail.com>
…adoc Co-authored-by: Malte Sander <malte.sander.it@gmail.com>
20 tasks
Member
Author
Release noteSDP now supports configuring fault-tolerant execution for Trino via the TrinoCluster CRD |
Member
|
Are there any docs for this we can link to? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Implementation for #576
When providing credentials for S3, Azure or GCS we currently need a
SecretClass. It would be easier if the user could just provide aSecretas an alternative, we had that discussion recently. To be consistent with the current state, I usedSecretClassexclusively for now.Things I did not do in this PR to ease the review process (we could tackle those as a separate PR):
load_env_from_filesstuntDefinition of Done Checklist
Author
Reviewer
Acceptance
type/deprecationlabel & add to the deprecation scheduletype/experimentallabel & add to the experimental features tracker